8fd908232e9e298815fbecf65d9fe7f214442f74,core/src/main/java/com/boydti/fawe/object/collection/LocalBlockVectorSet.java,LocalBlockVectorSet,contains,#Object#,37
Before Change
public boolean contains(Object o) {
if (o instanceof Vector) {
Vector v = (Vector) o;
int x = v.getBlockX();
int y = v.getBlockY();
int z = v.getBlockZ();
return set.get(MathMan.tripleSearchCoords(x - offsetX, y, z - offsetZ));
}
return false;
}
After Change
public boolean contains(Object o) {
if (o instanceof Vector) {
Vector v = (Vector) o;
return contains(v.getBlockX(), v.getBlockY(), v.getBlockZ());
}
return false;
}